home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 1
/
LSD Compendium Deluxe 1.iso
/
a
/
programming
/
misc
/
m2_part1.lha
/
modula
/
src
/
Coroutines.def
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-07-30
|
291 b
|
17 lines
DEFINITION FOR C MODULE Coroutines ;
FROM SYSTEM IMPORT ADDRESS ;
TYPE
PROCESS = ADDRESS ;
PROCEDURE TRANSFER( VAR source , destination : PROCESS ) ;
PROCEDURE NEWPROCESS( start : PROC ;
stack : ADDRESS ;
size : LONGINT ;
VAR new : PROCESS ) ;
END Coroutines.